Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sling-framework

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sling-framework

Sling Framework

  • 1.12.5
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Sling Framework

The Sling Framework provides the building blocks to create Sling-based web components.

Usage

import { SlingElement, html } from 'sling-framework';

export const StarRating = (Base = class {}) => class extends Base {
  static get properties() {
    return {
      rate: {
        type: Number,
        reflectToAttribute: true,
      },
    };
  }

  render() {
    return html`
      <style>
        button { color: grey; border: none; font-size: 32px; }
        button.selected { color: gold; }
      </style>
      ${[1, 2, 3, 4, 5].map(index => html`
        <button className="${index <= this.rate ? ' selected' : ''}"></button>
      `)}
    `;
  }
}

customElements.define('star-rating', StarRating(SlingElement));

More examples can be found at:

  • Creating a web component with SlingElement and html
  • Creating a web component the makes API requests

SlingElement

A class based on Google's LitElement that provides attribute/property handling and reflecting.

html

A tagged template literal utility from lit-html that provides an expressive API to dynamically generate html that reacts effectively to the component's state.

withRequest

A decorator that exposes methods, properties and events for handling API requests.

withSetState

A decorator that exposes a method that changes the component state in a functional way.

FAQs

Package last updated on 06 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc